arrays - определение. Что такое arrays
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое arrays - определение

DATA STRUCTURE
Ragged arrays; Array index; Vector data structure; Array element; Two-dimensional array; One-dimensional array; Vector (Computer Science); Static array; Array data structure; Vector (data structure)
Найдено результатов: 233
Array (data structure)         
In computer science, an array is a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key. An array is stored such that the position of each element can be computed from its index tuple by a mathematical formula.
Array data structure         
In computer science, an array is a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key. An array is stored such that the position of each element can be computed from its index tuple by a mathematical formula.
Diversity arrays technology         
GENOTYPING TECHNOLOGY
DArT; Diversity Arrays Technology
Diversity Arrays Technology (DArT) is a high-throughput genetic marker technique that can detect allelic variations to provides comprehensive genome coverage without any DNA sequence information for genotyping and other genetic analysis. The general steps involve reducing the complexity of the genomic DNA with specific restriction enzymes, choosing diverse fragments to serve as representations for the parent genomes, amplify via polymerase chain reaction (PCR), insert fragments into a vector to be placed as probes within a microarray, then fluorescent targets from a reference sequence will be allowed to hybridize with probes and put through an imaging system.
Riordan array         
Riordan arrays; Riordan Arrays; Riordan group
A (proper) Riordan array is an infinite lower triangular matrix, D, constructed out of two formal power series, d(t) of order 0 and h(t) of order 1, in such a way that d_{n,k} = [t^n]d(t) h(t)^k.
Sorted array         
ARRAY DATA STRUCTURE IN WHICH EACH ELEMENT IS SORTED IN NUMERICAL, ALPHABETICAL, OR SOME OTHER ORDER
Applications of sorted arrays
A sorted array is an array data structure in which each element is sorted in numerical, alphabetical, or some other order, and placed at equally spaced addresses in computer memory. It is typically used in computer science to implement static lookup tables to hold multiple values which have the same data type.
Parametric array         
Parametric arrays
A parametric array, in the field of acoustics, is a nonlinear transduction mechanism that generates narrow, nearly side lobe-free beams of low frequency sound, through the mixing and interaction of high frequency sound waves, effectively overcoming the diffraction limit (a kind of spatial 'uncertainty principle') associated with linear acoustics. The main side lobe-free beam of low frequency sound is created as a result of nonlinear mixing of two high frequency sound beams at their difference frequency.
Judy array         
DATA STRUCTURE IMPLEMENTING A TYPE OF ASSOCIATIVE ARRAY WITH HIGH PERFORMANCE AND LOW MEMORY USAGE
Judy arrays; Judy tree
In computer science, a Judy array is a data structure implementing a type of associative array with high performance and low memory usage.Robert Gobeille and Douglas Baskins' patent Unlike most other key-value stores, Judy arrays use no hashing, leverage compression on their keys (which may be integers or strings), and can efficiently represent sparse data; that is, they may have large ranges of unassigned indices without greatly increasing memory usage or processing time.
dart         
GENOTYPING TECHNOLOGY
DArT; Diversity Arrays Technology
v.
1) (D; tr.) to dart at (to dart a glance at smb.)
2) (P; intr.) the children darted into the room; the hare darted along the edge of the clearing
dart         
GENOTYPING TECHNOLOGY
DArT; Diversity Arrays Technology
(darts, darting, darted)
1.
If a person or animal darts somewhere, they move there suddenly and quickly. (WRITTEN)
Ingrid darted across the deserted street...
VERB: V prep/adv
2.
If you dart a look at someone or something, or if your eyes dart to them, you look at them very quickly. (LITERARY)
She darted a sly sideways glance at Bramwell...
The conductor's eyes darted to Wilfred, then fixed on Michael again.
VERB: V n at n, V prep/adv
3.
A dart is a small, narrow object with a sharp point which can be thrown or shot.
Markov died after being struck by a poison dart.
N-COUNT
4.
Darts is a game in which you throw darts at a round board which has numbers on it.
N-UNCOUNT
dart         
GENOTYPING TECHNOLOGY
DArT; Diversity Arrays Technology
I. v. a.
1.
Hurl, throw, launch, jaculate, let fly.
2.
Emit, shoot, send off.
II. v. n.
Rush, fly swiftly, spring.

Википедия

Array (data structure)

In computer science, an array is a data structure consisting of a collection of elements (values or variables), of same memory size, each identified by at least one array index or key. An array is stored such that the position of each element can be computed from its index tuple by a mathematical formula. The simplest type of data structure is a linear array, also called one-dimensional array.

For example, an array of ten 32-bit (4-byte) integer variables, with indices 0 through 9, may be stored as ten words at memory addresses 2000, 2004, 2008, ..., 2036, (in hexadecimal: 0x7D0, 0x7D4, 0x7D8, ..., 0x7F4) so that the element with index i has the address 2000 + (i × 4). The memory address of the first element of an array is called first address, foundation address, or base address.

Because the mathematical concept of a matrix can be represented as a two-dimensional grid, two-dimensional arrays are also sometimes called "matrices". In some cases the term "vector" is used in computing to refer to an array, although tuples rather than vectors are the more mathematically correct equivalent. Tables are often implemented in the form of arrays, especially lookup tables; the word "table" is sometimes used as a synonym of array.

Arrays are among the oldest and most important data structures, and are used by almost every program. They are also used to implement many other data structures, such as lists and strings. They effectively exploit the addressing logic of computers. In most modern computers and many external storage devices, the memory is a one-dimensional array of words, whose indices are their addresses. Processors, especially vector processors, are often optimized for array operations.

Arrays are useful mostly because the element indices can be computed at run time. Among other things, this feature allows a single iterative statement to process arbitrarily many elements of an array. For that reason, the elements of an array data structure are required to have the same size and should use the same data representation. The set of valid index tuples and the addresses of the elements (and hence the element addressing formula) are usually, but not always, fixed while the array is in use.

The term "array" may also refer to an array data type, a kind of data type provided by most high-level programming languages that consists of a collection of values or variables that can be selected by one or more indices computed at run-time. Array types are often implemented by array structures; however, in some languages they may be implemented by hash tables, linked lists, search trees, or other data structures.

The term is also used, especially in the description of algorithms, to mean associative array or "abstract array", a theoretical computer science model (an abstract data type or ADT) intended to capture the essential properties of arrays.